home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / comms / other / palmmail / install next >
Text File  |  1999-04-19  |  986b  |  54 lines

  1. ; $VER: Installation script for PalmSync 1.0 (11. April 1999)
  2. ; © Johnny T Nielsen
  3. ; Created with GoldED 5.1
  4.  
  5. ; check if we are running under correct OS
  6.  
  7. (if (< (/ (getversion) 65536) 39)
  8.     (
  9.         (abort "Incorrect OS version (software requires OS 39 or better )!")
  10.     )
  11. )
  12.  
  13. ; error handling
  14.  
  15. (onerror
  16.     (if (> @ioerr 0)
  17.         (
  18.             (message
  19.                 ("An error has occurred during installation. Please check the log file to understand the error.")
  20.             )
  21.         )
  22.     )
  23.     (exit (quiet))
  24. )
  25.  
  26. (user 1)
  27. (welcome)
  28.  
  29. ; --- insert your code below ---
  30. (copyfiles
  31.     (source "C/PalmMail")
  32.     (dest "C:")
  33.     (optional "fail")
  34. )
  35. (copyfiles
  36.     (source "Prefs/")
  37.     (dest "sys:Prefs")
  38.     (all)
  39.     (optional "fail")
  40. )
  41. (copyfiles
  42.     (source "Rexx/")
  43.     (dest "Rexx:")
  44.     (all)
  45.     (optional "fail")
  46. )
  47.  
  48. (message "PalmMail has been installed!\n\nRun C:PalmMail to syncronize your YAM-mails with the PalmPilot organizer.\n\nuse the rexx-script 'rexx:PalmMail/SelectFolders.rexx' to select which folders to syncronize")
  49.  
  50. ; --- end of your code ---
  51.  
  52. (exit)
  53.  
  54.